home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Windows / WindowDefaults.h < prev    next >
Text File  |  2000-06-23  |  461b  |  28 lines

  1. // WindowDefaults.h
  2.  
  3. #ifndef WindowDefaults_h
  4. #define WindowDefaults_h
  5.  
  6. #ifndef Rectangle_h
  7. #include "Rectangle.h"
  8. #endif
  9.  
  10. #include <QuickDraw.h>
  11.  
  12. class String255;
  13.  
  14. class WindowDefaults
  15.   {
  16.     public:
  17.         virtual GDHandle DefaultScreen() const;
  18.         virtual Rectangle DefaultPosition( GDHandle screen ) const = 0;
  19.         
  20.         virtual void GetDefaultName( String255& ) const;
  21.         
  22.         virtual uint32 DefaultIndex() const;
  23.         
  24.         virtual bool DefaultVisibility() const;
  25.   };
  26.  
  27. #endif
  28.